You are here: Learning the Basics > Databases > Configuration Store

Configuration Store

Your applications need somewhere to keep your settings and application changes so they are persisted across sessions. By default App Manager will store your configurations in a local file database (.SDF file) on the server. However, the Configuration Store feature provides the ability for you to manage this setting and specify a specific database if you choose.

Note: See the Advanced Configurations section for details on configuration architecture, database requirements, and other technical details.

Choosing a Storage Mechanism

The default Configuration Store, a SQL Server Compact Edition database (.SDF file), is only recommended to be used when the physical storage demands for the applications is expected to be relatively lightweight. SQL Server Compact Edition DB is a file-based database which is restricted by the limitations of the operating system’s file system. Such as: file size, read/write time, availability, etc. The default configuration store (SQL Server Compact Edition) will typically perform satisfactorily under normal circumstances. However, if it is expected that the applications will be heavily used by many concurrent users or if a large amount of data will be stored (for example, the use of Road Video Viewer) then it is highly recommended to use an enterprise configuration storage mechanism (such as SQL Server or Oracle). The information below can be used to help decide which storage mechanism is right for you.

Usage